home *** CD-ROM | disk | FTP | other *** search
/ Software 2000 / Software 2000 Volume 1 (Disc 1 of 2).iso / utilities / u264.dms / in.adf / ARPPRO3.0 / PRO.RUN / exit.c < prev    next >
Encoding:
Text File  |  1992-04-18  |  145 b   |  10 lines

  1. /* Not really arp specific, but need to prevent horrendous linker errors */
  2. int (*cls_)();
  3.  
  4. exit(code)
  5. {
  6.     if (cls_)
  7.         (*cls_)();
  8.     _exit(code);
  9. }
  10.